From 078d34867aa33fd7684ebe54b723309f2dcbc0ff Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Mon, 23 Dec 2024 14:20:07 +0100 Subject: Fix complaints --- src/pages/blog/[id].astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pages/blog/[id].astro') diff --git a/src/pages/blog/[id].astro b/src/pages/blog/[id].astro index 6488a04..50bf998 100644 --- a/src/pages/blog/[id].astro +++ b/src/pages/blog/[id].astro @@ -9,7 +9,7 @@ export const getStaticPaths = (async () => { params: { id: entry.id }, props: { entry }, })); -}) as GetStaticPaths; +}) satisfies GetStaticPaths; const { entry } = Astro.props; const { Content } = await render(entry); @@ -44,7 +44,7 @@ const schema = { --- - +

{entry.data.title}

-- cgit v1.3